home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / git-4.3 / git-4 / git-4.3.11 / src / gitredir < prev    next >
Encoding:
Text File  |  1996-06-06  |  582 b   |  26 lines

  1. #!/bin/sh
  2.  
  3. ###############################################################################
  4. ###                                        ###
  5. ###         GNU Interactive Tools 4.3.11 redirection script            ###
  6. ###        Copyright (C) 1994, 1996 Free Software Foundation, Inc.     ###
  7. ###            Written by Tudor Hulubei and Andrei Pitis.              ###
  8. ###                                        ###
  9. ###############################################################################
  10.  
  11. name=`basename $0`
  12.  
  13. if test "$#" -eq 0; then
  14.     echo "$name: GIT internal script" >&2
  15.     exit 255
  16. fi
  17.  
  18.  
  19. $@ | (IFS=
  20.     while read line
  21.     do
  22.         echo $line >&2
  23.     done)
  24.  
  25. exit 1
  26.